Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632543 Views

Latest files of /cody/solygambas/html-css-javascript-projects/073-lyrics search app

style.css cody/solygambas/html-css-javascript-projects/073-lyrics search app/style.css
159 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

:root {
--main-color: #3B9B76;
--secondary-color: #5AB193;
--text-color: rgba(255,255,255,0.87);
}

index.html cody/solygambas/html-css-javascript-projects/073-lyrics search app/index.html
318 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Lyrics Search</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/073-lyrics search app/script.js
225 Views
0 Comments
const form = document.getElementById("form");
const search = document.getElementById("search");
const result = document.getElementById("result");
const more = document.getElementById("more");

const apiURL = "https://api.lyrics.ovh";

async function searchSongs(term) {